projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc88b6b
)
Remove -q from zstd invocation
author
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 24 Jun 2019 14:06:54 +0000
(16:06 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 24 Jun 2019 14:08:12 +0000
(16:08 +0200)
* lib-src/etags.c (compressors): -q isn't necessary since standard
output goes to /dev/null. From Michael Albinus (bug#33919).
lib-src/etags.c
patch
|
blob
|
history
diff --git
a/lib-src/etags.c
b/lib-src/etags.c
index 6165872e4cfcd184aaa81966c555e15f709dba04..f70a1f67bc8352f6ec55a6037a912efeb5e21a06 100644
(file)
--- a/
lib-src/etags.c
+++ b/
lib-src/etags.c
@@
-519,7
+519,7
@@
static compressor compressors[] =
{ "GZ", "gzip -d -c"},
{ "bz2", "bzip2 -d -c" },
{ "xz", "xz -d -c" },
- { "zst", "zstd -d -c
-q
" },
+ { "zst", "zstd -d -c" },
{ NULL }
};